@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);

html {
    scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-underline-offset: 8px;
}

body {
    color: #fff;
    background-image: linear-gradient(to bottom right, #173c1e, black);
    background-attachment: fixed;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(15, 15, 15, 0.4);
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.logo {
    max-width: 70px;
    margin-left: 10px;
}

.nav {
    display: flex;
}

.nav div {
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.nav a:hover {
    text-decoration: underline;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.intro-image {
    max-width: 300px;
    height: auto;
    object-fit: cover;
    margin-top: 50px;
}

@media (min-width: 615px) {
    .intro-image {
        max-width: 500px;
    }
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.video-container video {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.gallery {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0 10px;
}

@media (min-width: 576px) {
    .gallery {
        padding: 0 20px;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .gallery {
        padding: 0 50px;
    }
}

@media (min-width: 992px) {
    .gallery {
        padding: 0 100px;
    }
}

.gallery-item {
    margin: 2px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

body.no-scroll {
    overflow: hidden;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 10px;
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal-image {
    max-width: 100%;
    max-height: auto;
    width: 100%;
    height: auto;
    margin-left: auto;
}

.vertical-image{
    max-width: 60vh;
    height: auto;
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 100%;
        padding: 5px;
    }

    .lightbox-slide img {
        max-width: 100%;
        max-height: 80vh;
    }
}

@media (max-width: 576px) {
    .lightbox-content {
        width: 100%;
        padding: 5px;
    }

    .lightbox-slide img {
        max-width: 100%;
        max-height: 70vh;
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    cursor: pointer;
    z-index: 1001;
}

.footer {
    margin: 20px;
    font-weight: 500;
}